/******************************************************************************* * Copyright (c) 2000, 2016 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.jdt.internal.core.manipulation.search; import org.eclipse.osgi.util.NLS; public final class SearchMessages extends NLS { private static final String BUNDLE_NAME= "org.eclipse.jdt.internal.core.manipulation.search.SearchMessages";//$NON-NLS-1$ private SearchMessages() { // Do not instantiate } static { NLS.initializeMessages(BUNDLE_NAME, SearchMessages.class); } public static String OccurrencesFinder_no_element; public static String OccurrencesFinder_no_binding; public static String OccurrencesFinder_searchfor; public static String OccurrencesFinder_label_singular; public static String OccurrencesFinder_label_plural; public static String OccurrencesFinder_occurrence_description; public static String OccurrencesFinder_occurrence_write_description; public static String OccurrencesSearchLabelProvider_line_number; }